POV-Ray : Newsgroups : povray.general : Method to make spherical planetoid looking things : Method to make spherical planetoid looking things Server Time
29 Jul 2024 04:30:17 EDT (-0400)
  Method to make spherical planetoid looking things  
From: Paul Vanukoff
Date: 28 Dec 1999 12:33:59
Message: <3868f487@news.povray.org>
Needs a light_source or two, a camera, and a fast computer. I have not
nearly enough patience to see the render through on my machine.


// Source //

global_settings { max_trace_level 100 }

#include "colors.inc"

#declare K=0;
#while (K<1)

sphere
{
    < 0, 0, 0> 2*K
    pigment
    {
        bozo turbulence 1.5
        color_map
        {
            [0.0 color White transmit 0]
            [1-K color White transmit 0]
            [1-K color White transmit 1]
            [1.0 color White transmit 1]
        }
    }
}

#declare K=K+0.01;
#end

// End Source //

--
Paul Vanukoff
van### [at] primenetcom


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.